home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 52
/
Amiga Format AFCD52 (Issue 136, May 2000).iso
/
-serious-
/
programming
/
other
/
littelcomp
/
r5
/
lc
/
examples
/
exceptions.l
< prev
next >
Wrap
Text File
|
2000-02-28
|
290b
|
19 lines
;
PROC main
copy d0 d1
cdpr nisse
copy 10 d0
EXCEPT
copy _exception d0 ;return exception to cli
rthrw
ENDPROC
PROC nisse ;RAISE just to know it can raise things..
raise 16 17 d0 = d0
ENDPROC ; we just leave nisse with exception set
END